perm filename TRANS.DOC[226,JMC] blob sn#005388 filedate 1972-06-09 generic text, type T, neo UTF8
00100			Procedure for Translating Rlisp Files to Lisp
00200	
00300		Given  a  source file of Rlisp expressions called "FILE.RLI",
00400	the following procedure is used to produce an equivalent S-expression
00500	file.
00600	
00700	1)	R RLISP size		;large files may require a size
00800	
00900	2)	OUT(FILE.LSP)$		;specify ouput file
01000	
01100	3)	ON DEFN$		;set flag for translation
01200	
01300	4)	IN(FILE.RLI)$		;start reading the file
01400	
01500	5)	END$			;this closes the output file
01600	
01700		The  file  "FILE.LSP"  is  now   the   desired   S-expression
01800	equivalent  of "FILE.RLI". This file may now be processed by the Lisp
01900	compiler in the usual way.
02000